Loop Through a Dictionary
Command Prototype
`For Each key, value In dataStruct
Next`
Command Description
Loop through every piece of data in Collection and executes block of statements "Block” after substituting the name (for dictionary) or index (for array) of the data into Key, and substituting the value of the data into Value
Parameter Description
- Required Parameter
- Key--Loop through keys
- value--Loop through values
- dataStruct--The data structure to be looped through